home *** CD-ROM | disk | FTP | other *** search
- id xValue, yValue;
-
- - home {
- id message;
-
- message = [NSString stringWithFormat:@"Clicked 'home' at %@,%@.", xValue, yValue];
- [WOApp setResultMessage:message];
- return [WOApp pageWithName:@"Page2"];
- }
-
-
- - newProducts {
- id message;
-
- message = [NSString stringWithFormat:@"Clicked 'newProducts' at %@,%@.", xValue, yValue];
- [WOApp setResultMessage:message];
- return [WOApp pageWithName:@"Page2"];
- }
-
-
- - catalog {
- id message;
-
- message = [NSString stringWithFormat:@"Clicked 'catalog' at %@,%@.", xValue, yValue];
- [WOApp setResultMessage:message];
- return [WOApp pageWithName:@"Page2"];
- }
-
-
- - companyInfo {
- id message;
-
- message = [NSString stringWithFormat:@"Clicked 'companyInfo' at %@,%@.", xValue, yValue];
- [WOApp setResultMessage:message];
- return [WOApp pageWithName:@"Page2"];
- }
-
-
- - defaultAction {
- id message;
-
- message = [NSString stringWithFormat:@"Clicked at %@,%@, which is outside of any mapped area.", xValue, yValue];
- [WOApp setResultMessage:message];
- return [WOApp pageWithName:@"Page2"];
- }
-
-
-
-
-
-
-